home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / PACKAGES / AWK320.ZIP / F2.AWK < prev    next >
Text File  |  1991-04-30  |  102b  |  5 lines

  1. BEGIN {
  2.          for (i=1;    ;   ) { printf " %d", i; if (i >= 9) break; i++ }
  3.     printf "\n"
  4. }
  5.